Listing 08 - Page 0: No Title

##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 08\08.1263 - No Title.py
# Description: No Title
##############################################################################

names = ["Ana", "Carlos", "Maria"]
try:
    i = int(input("Type the index you want to print:"))
    print(names[i])
except ValueError:
    print("Enter a number!")
    raise
finally:
    print("Finally is always executed")
Click here to download the file